* subr.el (listify-key-sequence): Use a character constant to
authorJim Blandy <jimb@redhat.com>
Mon, 3 May 1993 03:40:40 +0000 (03:40 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 3 May 1993 03:40:40 +0000 (03:40 +0000)
decide which bits to flip, not an integer constant.

lisp/subr.el

index 932bf0b96c4d92d99c68595fcbcadd6988917efb..74c8968fc1c06920d9380b38dd310d9aadfdd951 100644 (file)
@@ -236,7 +236,7 @@ The normal global definition of the character C-x indirects to this keymap.")
       (append key nil)
     (mapcar (function (lambda (c)
                        (if (> c 127)
-                           (logxor c 8388736)
+                           (logxor c ?\M-\200)
                          c)))
            (append key nil))))